home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxdda.h < prev    next >
Text File  |  1997-05-27  |  5KB  |  146 lines

  1. /* Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxdda.h */
  20. /* DDA definitions for Ghostscript line drawing */
  21. /* Requires gxfixed.h */
  22.  
  23. /*
  24.  * We use the familiar Bresenham DDA algorithm for several purposes:
  25.  *    - tracking the edges when filling trapezoids;
  26.  *    - tracking the current pixel corner coordinates when rasterizing
  27.  *    skewed or rotated images;
  28.  *    - converting curves to sequences of lines (this is a 3rd-order
  29.  *    DDA, the others are 1st-order);
  30.  *    - perhaps someday for drawing single-pixel lines.
  31.  * In the case of trapezoids, lines, and curves, we need to use
  32.  * the DDA to find the integer X values at integer+0.5 values of Y;
  33.  * in the case of images, we use DDAs to compute the (fixed)
  34.  * X and Y values at (integer) source pixel corners.
  35.  *
  36.  * The purpose of the DDA is to compute the exact values Q(i) = floor(i*D/N)
  37.  * for increasing integers i, 0 <= i <= N.  D is considered to be an
  38.  * integer, although it may actually be a fixed.  For the algorithm,
  39.  * we maintain i*D/N as Q + R/N where Q and R are integers, 0 <= R < N,
  40.  * with the following auxiliary values:
  41.  *    dQ = floor(D/N)
  42.  *    dR = D mod N (0 <= dR < N)
  43.  *    NdR = N - dR
  44.  * Then at each iteration we do:
  45.  *    Q += dQ;
  46.  *    if ( R < dR ) ++Q, R += NdR; else R -= dR;
  47.  * These formulas work regardless of the sign of D, and never let R go
  48.  * out of range.
  49.  */
  50. /* In the following structure definitions, ntype must be an unsigned type. */
  51. #define dda_state_struct(sname, dtype, ntype)\
  52.   struct sname { dtype Q; ntype R; }
  53. #define dda_step_struct(sname, dtype, ntype)\
  54.   struct sname { dtype dQ; ntype dR, NdR; }
  55. /* DDA with fixed Q and (unsigned) integer N */
  56. typedef dda_state_struct(_a, fixed, uint) gx_dda_state_fixed;
  57. typedef dda_step_struct(_e, fixed, uint) gx_dda_step_fixed;
  58. typedef struct gx_dda_fixed_s {
  59.   gx_dda_state_fixed state;
  60.   gx_dda_step_fixed step;
  61. } gx_dda_fixed;
  62. /*
  63.  * Define a pair of DDAs for iterating along an arbitrary line.
  64.  */
  65. typedef struct gx_dda_fixed_point_s {
  66.   gx_dda_fixed x, y;
  67. } gx_dda_fixed_point;
  68. /*
  69.  * Initialize a DDA.  The sign test is needed only because C doesn't
  70.  * provide reliable definitions of / and % for integers (!!!).
  71.  */
  72. #define dda_init_state(dstate, init, N)\
  73.   (dstate).Q = (init), (dstate).R = (N)
  74. #define dda_init_step(dstep, D, N)\
  75.   if ( (N) == 0 )\
  76.     (dstep).dQ = 0, (dstep).dR = 0;\
  77.   else if ( (D) < 0 )\
  78.    { (dstep).dQ = -(-(D) / (N));\
  79.      if ( ((dstep).dR = -(D) % (N)) != 0 )\
  80.        --(dstep).dQ, (dstep).dR = (N) - (dstep).dR;\
  81.    }\
  82.   else\
  83.    { (dstep).dQ = (D) / (N); (dstep).dR = (D) % (N); }\
  84.   (dstep).NdR = (N) - (dstep).dR
  85. #define dda_init(dda, init, D, N)\
  86.   dda_init_state((dda).state, init, N);\
  87.   dda_init_step((dda).step, D, N)
  88. /*
  89.  * Compute the sum of two DDA steps with the same D and N.
  90.  */
  91. #define dda_step_add(tostep, fromstep)\
  92.   (tostep).dQ +=\
  93.     ((tostep).dR < (fromstep).NdR ?\
  94.      ((tostep).dR += (fromstep).dR, (fromstep).dQ) :\
  95.      ((tostep).dR -= (fromstep).NdR, (fromstep).dQ + 1))
  96. /*
  97.  * Return the current value in a DDA.
  98.  */
  99. #define dda_state_current(dstate) (dstate).Q
  100. #define dda_current(dda) dda_state_current((dda).state)
  101. #define dda_current_fixed2int(dda)\
  102.   fixed2int_var(dda_state_current((dda).state))
  103. /*
  104.  * Increment a DDA to the next point.
  105.  * Returns the updated current value.
  106.  */
  107. #define dda_state_next(dstate, dstep)\
  108.   (dstate).Q +=\
  109.     ((dstate).R >= (dstep).dR ?\
  110.      ((dstate).R -= (dstep).dR, (dstep).dQ) :\
  111.      ((dstate).R += (dstep).NdR, (dstep).dQ + 1))
  112. #define dda_next(dda) dda_state_next((dda).state, (dda).step)
  113. /*
  114.  * Back up a DDA to the previous point.
  115.  * Returns the updated current value.
  116.  */
  117. #define dda_state_previous(dstate, dstep)\
  118.   (dstate).Q -=\
  119.     ((dstate).R < (dstep).NdR ?\
  120.      ((dstate).R += (dstep).dR, (dstep).dQ) :\
  121.      ((dstate).R -= (dstep).NdR, (dstep).dQ + 1))
  122. #define dda_previous(dda) dda_state_previous((dda).state, (dda).step)
  123. /*
  124.  * Advance a DDA by an arbitrary number of steps.
  125.  * The do { ... } while ( 0 ) construct creates the appropriate syntax.
  126.  * This implementation is very inefficient; we'll improve it if needed.
  127.  */
  128. #define dda_state_advance(dstate, dstep, nsteps)\
  129.   do\
  130.     { uint n_ = (nsteps);\
  131.       (dstate).Q += (dstep).dQ * (nsteps);\
  132.       while ( n_-- )\
  133.         if ( (dstate).R >= (dstep).dR ) (dstate).R -= (dstep).dR;\
  134.         else (dstate).R += (dstep).NdR, (dstate).Q++;\
  135.     }\
  136.   while ( 0 )
  137. #define dda_advance(dda, nsteps)\
  138.   dda_state_advance((dda).state, (dda).step, nsteps)
  139. /*
  140.  * Translate the position of a DDA by a given amount.
  141.  */
  142. #define dda_state_translate(dstate, delta)\
  143.   ((dstate).Q += (delta))
  144. #define dda_translate(dda, delta)\
  145.   dda_state_translate((dda).state, delta)
  146.